
.banner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 510px;
	min-width: 1500px;
}

.banner>.back {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: gray;
	overflow: hidden;
}

.banner>.back>img {
	position: absolute;
	filter: blur(5rem);
	width: 100%;
	height: 100%;
	-webkit-user-drag:none;
}

.banner>.front {
    margin-top: 60px;
	position: relative;
	display: flex;
    justify-content: center;
	height: 450px;
	overflow: hidden;
}

.banner>.front>.switch {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 60px;
}

.banner>.front>.switch:hover>div::before {
	color: #ffffff90;
}

.banner>.front:hover>.switch>div::before {
	color: #ffffff90;
}

.banner>.front>.switch>div::before {
	font-size: 48px;
	font-family: 'fangsong';
	display: flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	transition: 0.5s color;
	cursor: pointer;
	font-weight: bold;
}

.banner>.front>.switch>.prev::before {
	content: "<";
}

.banner>.front>.switch>.next::before {
	content: ">";
}


.banner>.front>.switch>div:hover::before {
	color: #ffffff;
}

.banner>.front>.images {
	position: relative;
	height: 450px;
	background: black;
	user-select: none;
}

.banner>.front>.images>.holder {
	height: 100%;
}


.banner>.front>.images>.holder>img {
    height: 100%;
	user-select: none;
    app-region: no-drag;
    -webkit-user-drag: none;
}

.banner>.front>.images>img {
	opacity: 0;
	position: absolute;
    inset: 0;
	user-select: none;
    app-region: no-drag;
    -webkit-user-drag: none;
}

.banner>.front>.images>.selector {
	list-style: none;
	position: absolute;
	display: flex;
	margin: 0;
	left: 0;
	bottom: 16px;
	right: 0;
	justify-content: center;
	padding: 0px;
}

.banner>.front>.images>.selector>li {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #dadadaa0;;
	margin: 0 4px;
	cursor: pointer;
	transition: 0.5s background;
}

.banner>.front>.images>.selector>li:hover {
	background: #eeeeee;
}

.banner>.front>.images>.selector>.current {
	background: #ffffff;
}